crypto/cipher.gcmFieldElement.low (field)
17 uses
crypto/cipher (current package)
gcm.go#L65: low, high uint64
gcm.go#L258: return gcmFieldElement{x.low ^ y.low, x.high ^ y.high}
gcm.go#L267: double.high |= x.low << 63
gcm.go#L268: double.low = x.low >> 1
gcm.go#L278: double.low ^= 0xe100000000000000
gcm.go#L296: word = y.low
gcm.go#L304: z.high |= z.low << 60
gcm.go#L305: z.low >>= 4
gcm.go#L306: z.low ^= uint64(gcmReductionTable[msw]) << 48
gcm.go#L313: z.low ^= t.low
gcm.go#L326: y.low ^= binary.BigEndian.Uint64(blocks)
gcm.go#L406: binary.BigEndian.PutUint64(counter[:8], y.low)
gcm.go#L418: y.low ^= uint64(len(additionalData)) * 8
gcm.go#L423: binary.BigEndian.PutUint64(out, y.low)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |